From: Jan Beulich Date: Mon, 26 Oct 2015 12:56:39 +0000 (+0100) Subject: arm: don't build core parking code X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2350 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=e896ad9a9164a432538789fa2993a1084fd0a387;p=xen.git arm: don't build core parking code It's wired up on x86 only. Signed-off-by: Jan Beulich Acked-by: Ian Campbell --- diff --git a/xen/arch/x86/Rules.mk b/xen/arch/x86/Rules.mk index 4a04a8aa6a..42de328468 100644 --- a/xen/arch/x86/Rules.mk +++ b/xen/arch/x86/Rules.mk @@ -13,6 +13,7 @@ HAS_EHCI := y HAS_KEXEC := y HAS_GDBSX := y HAS_PDX := y +HAS_CORE_PARKING := y xenoprof := y CFLAGS += -I$(BASEDIR)/include diff --git a/xen/common/Makefile b/xen/common/Makefile index b290c1685b..a7829db258 100644 --- a/xen/common/Makefile +++ b/xen/common/Makefile @@ -1,5 +1,5 @@ obj-y += bitmap.o -obj-y += core_parking.o +obj-$(HAS_CORE_PARKING) += core_parking.o obj-y += cpu.o obj-y += cpupool.o obj-$(HAS_DEVICE_TREE) += device_tree.o